Skip to content

Instantly share code, notes, and snippets.

@rvrsh3ll
rvrsh3ll / windows-keys.md
Created February 18, 2024 22:44
Windows Product Keys

NOTE

These are NOT product / license keys that are valid for Windows activation.
These keys only select the edition of Windows to install during setup, but they do not activate or license the installation.

Index

@echo off & setlocal enableextensions
title Reset AnyDesk
reg query HKEY_USERS\S-1-5-19 >NUL || (echo Please Run as administrator.& pause >NUL&exit)
chcp 437
call :stop_any
del /f "%ALLUSERSPROFILE%\AnyDesk\service.conf"
del /f "%APPDATA%\AnyDesk\service.conf"
copy /y "%APPDATA%\AnyDesk\user.conf" "%temp%\"
rd /s /q "%temp%\thumbnails" 2>NUL
xcopy /c /e /h /r /y /i /k "%APPDATA%\AnyDesk\thumbnails" "%temp%\thumbnails"
@thanhtantran
thanhtantran / hermes-camoufox-skill.md
Created August 6, 2026 16:29
camoufox browser hermes skill

name: camoufox-browser description: "Use when installing or driving Camoufox for stealth browser automation, scraping, or anti-bot sites. Covers pip install, browser fetch, system deps, headed/headless launch, and product scraping." version: 1.0.0 author: Tony Tran license: MIT platforms: [linux, macos, windows] metadata: hermes: tags: [camoufox, playwright, browser, scraping, stealth, fingerprint, anti-bot]

@noxone
noxone / Set-up-Git-and-SourceTree-to-gpg-sign-commits-on-MacOS.md
Last active August 7, 2026 04:24
Set up Git and SourceTree to gpg sign commits on MacOS

Conventional Commits Cheatsheet

[v0.1.0]

Conventional Commits SemVer strictness

@ongkiii
ongkiii / IPA-Sources.md
Last active August 7, 2026 04:21
REPOS/TELEGRAM CHANNELS LIST BY u/angkitbharadwaj
@whitequark
whitequark / installsword.c
Last active August 7, 2026 04:19
installsword.exe "My Product" "Cool Title in the Background"
#define WIN32_LEAN_AND_MEAN
#include <tchar.h>
#include <stdint.h>
#include <windows.h>
#include <shellapi.h>
COLORREF rgbText = 0xffffff;
LPTSTR pchFontName = _T("Times New Roman");
INT iFontSizePt = 24;
LPTSTR pchText = _T("InstallSword Wizard");
@m1no
m1no / motu-bridge.js
Last active August 7, 2026 04:19
MOTU Ultralite-mk5 API Bridge
// MOTU Ultralite-mk5 API Bridge
// Author: mino
// Date: 2023-02-22
// License: MIT
//
// Description:
// ------------
// I was looking for a easy way to mute and umute my main speakers via a Stream Deck button on the MOTU Ultralite-mk5.
// Unfortunately, Motu does not provide an HTTP API for this series, this feature is only available on the AVB devices.
// But with a bit of tinkering and reverse engineering of the Motu CueMix 5 app, it is possible to understand the used protocols and to send arbitrary commands.
@hallettj
hallettj / global-variables-are-bad.js
Created February 14, 2009 21:15
How and why to avoid global variables in JavaScript
// It is important to declare your variables.
(function() {
var foo = 'Hello, world!';
print(foo); //=> Hello, world!
})();
// Because if you don't, the become global variables.
(function() {